From 8f40b7df3b645a07ba000566ad84acea26e008ae Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 13 Jul 2012 19:02:18 +0200 Subject: [PATCH] lisp/bindings.el (top): Use `mapc' instead of `mapcar'. --- lisp/ChangeLog | 2 ++ lisp/bindings.el | 16 ++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99387ddf2f4..7ce5cfe4455 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-07-13 Juanma Barranquero + * bindings.el (top): Use `mapc' instead of `mapcar'. + * loadup.el (top): Remove bogus `if' choice (brought by revno:88805). 2012-07-13 Michael Albinus diff --git a/lisp/bindings.el b/lisp/bindings.el index 97450f788aa..96700c6dc26 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -657,14 +657,14 @@ okay. See `mode-line-format'.") ;; For consistency, we give them the `permanent-local' property, even ;; though `kill-all-local-variables' does not actually consult it. -(mapcar (lambda (sym) (put sym 'permanent-local t)) - '(buffer-file-name default-directory buffer-backed-up - buffer-saved-size buffer-auto-save-file-name - buffer-read-only buffer-undo-list mark-active - point-before-scroll buffer-file-truename - buffer-file-format buffer-auto-save-file-format - buffer-display-count buffer-display-time - enable-multibyte-characters)) +(mapc (lambda (sym) (put sym 'permanent-local t)) + '(buffer-file-name default-directory buffer-backed-up + buffer-saved-size buffer-auto-save-file-name + buffer-read-only buffer-undo-list mark-active + point-before-scroll buffer-file-truename + buffer-file-format buffer-auto-save-file-format + buffer-display-count buffer-display-time + enable-multibyte-characters)) ;; We have base64, md5 and sha1 functions built in now. (provide 'base64) -- 2.30.2